Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | /* tslint:disable:max-classes-per-file */ |
||
17 | |||
18 | @EventsHandler(RabbitWithDefEvent) |
||
19 | export class RabbitWithDefEventHandler implements IEventHandler<RabbitWithDefEvent> { |
||
20 | constructor( |
||
21 | private readonly storage: Storage |
||
22 | ) { |
||
23 | } |
||
24 | |||
25 | handle(event: RabbitWithDefEvent) { |
||
26 | this.storage.upsert('RabbitWithDefEvent', event.message); |
||
27 | } |
||
29 |